home *** CD-ROM | disk | FTP | other *** search
- #ifndef UI_H
- #define UI_H
-
- /* Stop listening to user events */
- void uiFreeze();
-
- /* Resume listening to user events */
- void uiThaw();
-
- /* Returns nonzero if we are doing the named thing, zero otherwise */
- int uiGet();
- int uiSet();
- int uiSetAll();
- int uiEliminateColor();
-
- /* Update the color display on the ui */
- void uiChangeColor(ColorA *color);
-
- /* Get the color from the ui */
- void uiCurrentColor(ColorA *color);
-
- /* Ask the user a question with two possible responses */
- int uiQuery(char *ques1, char *ques2, char *ques3, char *res1, char *res2);
-
- #endif
-